This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: How to code "Insert Comments" to an Excel cell ~Lisa Quetfanateroni 14.Aug.03 07:46 AM a Web browser Domino Designer 6.0.2 CF1Windows 2000
Hi Hung,
Not sure if this is what you need. If the LotusScript is opening an instance of MS Excel and the actual export is done in the LotusScript, this is what you need.
Worksheets(1).Range("E5").AddComment "Current Sales"
This can of course also be YourWorksheet.Cells(1,1).AddComment "bla bla".
A tip to lookup the Excel classes, methods and properties is to open excel, go to the Visual Basic Editor and use the Object Browser.